home *** CD-ROM | disk | FTP | other *** search
/ Computer Shopper 183 / dpcs0503.iso / Components / Microsoft ASP / _SETUP.1 / ASPWizard.jar / asp / wizard / XferItemEvent.class (.txt) < prev    next >
Encoding:
Java Class File  |  1998-11-20  |  655 b   |  19 lines

  1. package asp.wizard;
  2.  
  3. import java.awt.AWTEvent;
  4.  
  5. public class XferItemEvent extends AWTEvent {
  6.    public static final int ALL_TO_LEFT = 400;
  7.    public static final int TO_LEFT = 500;
  8.    public static final int ALL_TO_RIGHT = 600;
  9.    public static final int TO_RIGHT = 700;
  10.  
  11.    public XferItemEvent(Object source, int direction) {
  12.       super(source, direction);
  13.    }
  14.  
  15.    public int getDirection() {
  16.       return super.id;
  17.    }
  18. }
  19.